home *** CD-ROM | disk | FTP | other *** search
/ Euroscene 2 / Euroscene 2.iso / USEFUL / libs / FileSys / XFH / devs / Mountlist
Encoding:
Text File  |  1995-11-01  |  2.5 KB  |  108 lines

  1. /*
  2.  * Example mountlist entries for the XFH file system handler.
  3.  *
  4.  * These entries are suitable for mounting XH0: - XH3:, or they can
  5.  * be modified to personal taste.
  6.  *
  7.  * The general pattern for use is:
  8.  *
  9.  *    Set up a mountlist entry for device XXX: (this mountlist assumes
  10.  *    XH<n>:). Fill in the FileSystem field with the full path of the
  11.  *    handler code (usually L:XFH-Handler), and the Unit field with the
  12.  *    desired unit number (explained below). You may also want to change
  13.  *    the Priority field to control whether the handler should steal the
  14.  *    CPU from other busy tasks (but don't set it any higher than 10).
  15.  *
  16.  *    The unit number is used to control what directory the handler
  17.  *    should reside in. For example, say that you have a directory
  18.  *    'SYS:Text/Manuals' containing packed files that you wish the XFH
  19.  *    to unpack automatically on access. To achive this, assign XFH<n>,
  20.  *    where <n> is the unit number, to the desired directory, like
  21.  *
  22.  *       ASSIGN XFH0: SYS:Text/Manuals
  23.  *
  24.  *    After mounting, you will have access to a new disk-like device
  25.  *    with the volume name 'Manuals:' from which the packed files can
  26.  *    be accessed in their original form.
  27.  *
  28.  * It is also possible to use an option file in 's:xfh/'. Consult the file 
  29.  * XFH.doc for further details.
  30.  *
  31.  */
  32.  
  33. XH0:
  34.     FileSystem = L:XFH-handler
  35.     Unit = 0
  36.     Priority = 4
  37.     Mount = 1
  38.     Stacksize = 6000
  39.     GlobVec = -1
  40.     Device = "dummy.device"
  41.     LowCyl = 0
  42.     HighCyl = 0
  43.     BlocksPerTrack = 0
  44.     Surfaces = 0
  45.     Flags = 0
  46.     Reserved = 0
  47.     Interleave = 0
  48.     Buffers = 0
  49.     BufMemType = 0
  50. #
  51.  
  52. XH1:
  53.     FileSystem = L:XFH-handler
  54.     Unit = 1
  55.     Priority = 4
  56.     Mount = 1
  57.     Stacksize = 6000
  58.     GlobVec = -1
  59.     Device = "dummy.device"
  60.     LowCyl = 0
  61.     HighCyl = 0
  62.     BlocksPerTrack = 0
  63.     Surfaces = 0
  64.     Flags = 0
  65.     Reserved = 0
  66.     Interleave = 0
  67.     Buffers = 0
  68.     BufMemType = 0
  69. #
  70.  
  71. XH2:
  72.     FileSystem = L:XFH-handler
  73.     Unit = 2
  74.     Priority = 4
  75.     Mount = 1
  76.     Stacksize = 6000
  77.     GlobVec = -1
  78.     Device = "dummy.device"
  79.     LowCyl = 0
  80.     HighCyl = 0
  81.     BlocksPerTrack = 0
  82.     Surfaces = 0
  83.     Flags = 0
  84.     Reserved = 0
  85.     Interleave = 0
  86.     Buffers = 0
  87.     BufMemType = 0
  88. #
  89.  
  90. XH3:
  91.     FileSystem = L:XFH-handler
  92.     Unit = 3
  93.     Priority = 4
  94.     Mount = 1
  95.     Stacksize = 6000
  96.     GlobVec = -1
  97.     Device = "dummy.device"
  98.     LowCyl = 0
  99.     HighCyl = 0
  100.     BlocksPerTrack = 0
  101.     Surfaces = 0
  102.     Flags = 0
  103.     Reserved = 0
  104.     Interleave = 0
  105.     Buffers = 0
  106.     BufMemType = 0
  107. #
  108.